home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d3 / rettig.arc / TRSOURCE.EXE / BUFFERS.C < prev    next >
C/C++ Source or Header  |  1990-10-22  |  367b  |  21 lines

  1. /*********
  2. *
  3. *  BUFFERS.C
  4. *
  5. *  by Ralph Davis
  6. *
  7. * Placed in the public domain by Tom Rettig Associates, 10/22/1990.
  8. *
  9. *  Syntax:  BUFFERS()
  10. *  Return:  <expN> indicating number of buffers on BUFFERS= line in CONFIG.SYS
  11. *********/
  12.  
  13. #include "trlib.h"
  14.  
  15. TRTYPE buffers()
  16. {
  17.    char *confparm = "BUFFERS";
  18.    _retnd((double)(_tr_doscnf(confparm)));
  19. }
  20.  
  21.